home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / windows / tbag32.zip / REGVIEW.DPR < prev    next >
Text File  |  1997-03-06  |  357b  |  18 lines

  1. program RegView;
  2.  
  3. uses
  4.   Forms,
  5.   RegViewM in 'RegViewM.pas' {frmRegViewMain},
  6.   Tbag in 'Tbag.pas',
  7.   TBagHelp in 'TBagHelp.pas' {Bag32Help},
  8.   RegTBag in 'RegTBag.pas',
  9.   About3K in 'About3K.pas' {frmAbout3K};
  10.  
  11. {$R *.RES}
  12.  
  13. begin
  14.   Application.Initialize;
  15.   Application.CreateForm(TfrmRegViewMain, frmRegViewMain);
  16.   Application.Run;
  17. end.
  18.